home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
_SQLite_LibVersion.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
391b
|
16 lines
#include <SQLite.au3>
#include <SQLite.dll.au3>
_SQLite_Startup ()
If @error > 0 Then
MsgBox(16, "SQLite Error", "SQLite.dll Can't be Loaded!")
Exit - 1
EndIf
_SQLite_Open () ; Open a :memory: database
If @error > 0 Then
MsgBox(16, "SQLite Error", "Can't Load Database!")
Exit - 1
EndIf
MsgBox(0,"SQLite Version",_SQLite_LibVersion())
_SQLite_Close ()
_SQLite_Shutdown ()